home *** CD-ROM | disk | FTP | other *** search
- /* Demonstration program for MathFX illustrating absolute positioning */
- /* of graphs on a page */
- /* Copyright (©) 1995, The Xperts Group Inc. All Rights Reserved. */
- /* Author: Manolis S Pappas. */
-
- main()
- {
- fxstar(1,1);
-
- fxadv(0);
- fxvpor(0.0,1.0,0.0,1.0);
- fxwind(0.0,1.0,0.0,1.0);
- fxbox("bc",0.0,0,"bc",0.0,0);
-
- fxsvpa(50.0,150.0,100.0,150.0);
- fxwind(0.0,1.0,0.0,1.0);
- fxbox("bc",0.0,0,"bc",0.0,0);
- fxptex(0.5,0.5,1.0,0.0,0.5,"Positioning Box at (50,150,100,150)");
-
- fxend();
- }
-